home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- PREREQ=""
- DESCRIPTION="Configuring fstab..."
- FSTAB=/root/etc/fstab
-
- . /scripts/casper-functions
-
- prereqs()
- {
- echo "$PREREQ"
- }
-
- case $1 in
- # get pre-requisites
- prereqs)
- prereqs
- exit 0
- ;;
- esac
-
- log_begin_msg "$DESCRIPTION"
-
- cat > $FSTAB <<EOF
- ${UNIONFS} / ${UNIONFS} rw 0 0
- tmpfs /tmp tmpfs nosuid,nodev 0 0
- EOF
-
- rm -f /root/etc/rcS.d/S*checkroot.sh
-
- log_end_msg
-